home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / mig / RCS / MigHostCache.c,v < prev    next >
Text File  |  1990-09-24  |  4KB  |  175 lines

  1. head     2.1;
  2. branch   ;
  3. access   ;
  4. symbols  no-auto-remigrate:2.0 installed:2.0;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 2.1
  10. date     90.09.24.14.46.46;  author douglis;  state Exp;
  11. branches ;
  12. next     2.0;
  13.  
  14. 2.0
  15. date     90.03.10.13.12.31;  author douglis;  state Stable;
  16. branches ;
  17. next     1.1;
  18.  
  19. 1.1
  20. date     90.02.16.14.26.51;  author douglis;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @Internal routine to manage the cache of available hosts.
  27. @
  28.  
  29.  
  30. 2.1
  31. log
  32. @added callback flag to MigHostCache to make it easier to flag all hosts as reclaimed after error
  33. @
  34. text
  35. @/* 
  36.  * MigHostCache.c --
  37.  *
  38.  *    Internal routine to manage the cache of available hosts.
  39.  *
  40.  * Copyright 1990 Regents of the University of California
  41.  * Permission to use, copy, modify, and distribute this
  42.  * software and its documentation for any purpose and without
  43.  * fee is hereby granted, provided that the above copyright
  44.  * notice appear in all copies.  The University of California
  45.  * makes no representations about the suitability of this
  46.  * software for any purpose.  It is provided "as is" without
  47.  * express or implied warranty.
  48.  */
  49.  
  50. #ifndef lint
  51. static char rcsid[] = "$Header: /sprite/src/lib/c/mig/RCS/MigHostCache.c,v 2.0 90/03/10 13:12:31 douglis Stable Locker: douglis $ SPRITE (Berkeley)";
  52. #endif /* not lint */
  53.  
  54. #include <sprite.h>
  55. #include <hash.h>
  56. #include <stdlib.h>
  57. #include <mig.h>
  58. #include "migInt.h"
  59.  
  60. static Hash_Table table;
  61.  
  62.  
  63. /*
  64.  *----------------------------------------------------------------------
  65.  *
  66.  * MigHostCache --
  67.  *
  68.  *    Add, remove, or verify an entry in the host cache.
  69.  *
  70.  * Results:
  71.  *    TRUE if the host is in the cache at the start of the operation,
  72.  *    FALSE otherwise.  
  73.  *
  74.  * Side effects:
  75.  *    Hash table is updated.
  76.  *
  77.  *----------------------------------------------------------------------
  78.  */
  79.  
  80. int
  81. MigHostCache(hostID, op, callback)
  82.     int hostID;            /* Host to operate on. */
  83.     MigCacheOp op;        /* Operation to perform. */
  84.     int callback;        /* Whether to invoke callback function */
  85. {
  86.     static int init = 0;
  87.     Hash_Entry *entryPtr;    /* Entry in hash table. */
  88.     int found;
  89.  
  90.     if (!init) {
  91.     if (op == MIG_CACHE_REMOVE_ALL) {
  92.         return(0);
  93.     }
  94.     Hash_InitTable(&table, 0, HASH_ONE_WORD_KEYS);
  95.     init = 1;
  96.     }
  97.  
  98.     switch (op) {
  99.     case MIG_CACHE_ADD: {
  100.         /*
  101.          * Create the entry if it doesn't exist.  Sets third arg
  102.          * to TRUE if it creates it, meaning it wasn't found, so
  103.          * we have to negate it.
  104.          */
  105.         entryPtr = Hash_CreateEntry(&table, (Address) hostID, &found);
  106.         found = !found;
  107.         Hash_SetValue(entryPtr, (ClientData) hostID);
  108.         break;
  109.     }
  110.     case MIG_CACHE_VERIFY: 
  111.     case MIG_CACHE_REMOVE: {
  112.         entryPtr = Hash_FindEntry(&table, (Address) hostID);
  113.         found = (entryPtr != (Hash_Entry *) NULL);
  114.         if (op == MIG_CACHE_REMOVE && found) {
  115.         Hash_DeleteEntry(&table, entryPtr);
  116.         }
  117.         if (callback && (migCallBackPtr != NULL)) {
  118.         (*migCallBackPtr)(hostID);
  119.         }
  120.         
  121.         break;
  122.     }
  123.     case MIG_CACHE_REMOVE_ALL: {
  124.         if (callback && (migCallBackPtr != NULL)) {
  125.         Hash_Search search;
  126.         for (entryPtr = Hash_EnumFirst(&table, &search);
  127.              entryPtr != NULL; entryPtr = Hash_EnumNext(&search)) {
  128.             hostID = (int) Hash_GetValue(entryPtr);
  129.             (*migCallBackPtr)(hostID);
  130.         }
  131.         }
  132.         Hash_DeleteTable(&table);
  133.         init = 0;
  134.         return(0);
  135.     }
  136.     default: {
  137.         return(0);
  138.     }
  139.     }
  140.     return(found);
  141. }
  142.  
  143. @
  144.  
  145.  
  146. 2.0
  147. log
  148. @Changing version numbers.
  149. @
  150. text
  151. @d17 1
  152. a17 1
  153. static char rcsid[] = "$Header: /sprite/src/lib/c/mig/RCS/MigHostCache.c,v 1.1 90/02/16 14:26:51 douglis Exp Locker: douglis $ SPRITE (Berkeley)";
  154. d47 1
  155. a47 1
  156. MigHostCache(hostID, op)
  157. d50 1
  158. d57 3
  159. d73 1
  160. d83 4
  161. d90 8
  162. d108 1
  163. @
  164.  
  165.  
  166. 1.1
  167. log
  168. @Initial revision
  169. @
  170. text
  171. @d17 1
  172. a17 1
  173. static char rcsid[] = "$Header: /user2/douglis/pdev_mig/mig_p/RCS/MigHostCache.c,v 1.1 90/02/08 20:22:24 douglis Exp Locker: douglis $ SPRITE (Berkeley)";
  174. @
  175.